home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue26
/
websol
/
writer_sample.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-08-19
|
342 b
|
23 lines
unit writer_sample;
interface
// Procs
Procedure WriterSample(objc: TObject; const psFormName: String);
implementation
Uses
HTMLer, IAG_Server_Info, SysUtils;
Procedure WriterSample;
begin
with iagin do begin
WriteHTML('<HTML><BODY>');
WriteHTML('The time is: ' + FormatDateTime('', now));
end;
end;
end.